home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / pvm34b3.zip / pvm34b3 / pvm3 / libfpvm / WIN32 / watforstr.h < prev   
C/C++ Source or Header  |  1997-07-22  |  285b  |  19 lines

  1.  
  2. /* $Id: watforstr.h,v 1.1 1997/06/26 21:30:45 pvmsrc Exp $ */
  3.  
  4. #ifndef WATFORSTR_H
  5. #define WATFORSTR_H
  6.  
  7. /*
  8.   This is the structure the Watcom-Fortran compiler
  9.    uses to pass strings
  10. */
  11. typedef struct WatcomFortranStrDef
  12. {
  13.    char* strP;
  14.    int   len;
  15. } WatcomFortranStr;
  16.    
  17. #endif
  18.  
  19.